home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Tools - Objects / ResEdit / ResEdit 2.1b5 / Examples / CExamples / MakeLDEF < prev    next >
Encoding:
Text File  |  1990-10-23  |  580 b   |  31 lines  |  [TEXT/MPS ]

  1. #    MakeFile    -  Make instructions for the ResEdit ICON LDEF.
  2. #
  3. #    Copyright Apple Computer, Inc. 1986-1990
  4. #    All rights reserved.
  5. #
  6. #    This makefile builds:
  7. #        The ICON Resource LDEF
  8. #
  9.  
  10. cOptions = -b
  11. OutFile = {buildToName}
  12. obj = :obj:
  13. source = :Source:
  14. ResEditLibraries = ::Libraries:
  15.  
  16. LDEFLibs =     {obj}LDEF.a.o ∂
  17.             {obj}ResDisp.a.o ∂
  18.             "{Libraries}"Interface.o
  19.  
  20. # Link for ICON LDEF
  21. "{OutFile}"        ƒƒ    {obj}ICON.LDEF.c.o {LDEFLibs}
  22.     Link    {LDEFLibs} ∂
  23.             {obj}ICON.LDEF.c.o ∂
  24.             -ra =resPurgeable -sn Main=ICON -rt LDEF=128 ∂
  25.             -o "{OutFile}"
  26.  
  27. {obj}    ƒ    {source} {ResEditLibraries}
  28.  
  29.  
  30.  
  31.